home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / base / netkit-b.07a / netkit-b / NetKit-B-0.07A / rsh / Makefile next >
Encoding:
Makefile  |  1996-07-22  |  227 b   |  18 lines

  1. all: rsh
  2.  
  3. include ../MCONFIG
  4. include ../MRULES
  5.  
  6. OBJS = rsh.o
  7.  
  8. rsh: $(OBJS)
  9.     $(CC) $(LDFLAGS) $^ $(LIBS) -o $@
  10.  
  11. install: rsh
  12.     install -s -o root -m4755 rsh /usr/bin/rsh
  13.     install -m644 rsh.1 /usr/man/man1
  14.  
  15. clean:
  16.     rm -f *.o rsh
  17.  
  18.